home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / test / test_codecencodings_kr.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  2KB  |  36 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. from test import test_support
  5. from test import test_multibytecodec_support
  6. import unittest
  7.  
  8. class Test_CP949(test_multibytecodec_support.TestBase, unittest.TestCase):
  9.     encoding = 'cp949'
  10.     tstring = test_multibytecodec_support.load_teststring('cp949')
  11.     codectests = (('abc\x80\x80\xc1\xc4', 'strict', None), ('abc\xc8', 'strict', None), ('abc\x80\x80\xc1\xc4', 'replace', u'abc\xef\xbf\xbd\xec\xa2\x94'), ('abc\x80\x80\xc1\xc4\xc8', 'replace', u'abc\xef\xbf\xbd\xec\xa2\x94\xef\xbf\xbd'), ('abc\x80\x80\xc1\xc4', 'ignore', u'abc\xec\xa2\x94'))
  12.  
  13.  
  14. class Test_EUCKR(test_multibytecodec_support.TestBase, unittest.TestCase):
  15.     encoding = 'euc_kr'
  16.     tstring = test_multibytecodec_support.load_teststring('euc_kr')
  17.     codectests = (('abc\x80\x80\xc1\xc4', 'strict', None), ('abc\xc8', 'strict', None), ('abc\x80\x80\xc1\xc4', 'replace', u'abc\xef\xbf\xbd\xec\xa2\x94'), ('abc\x80\x80\xc1\xc4\xc8', 'replace', u'abc\xef\xbf\xbd\xec\xa2\x94\xef\xbf\xbd'), ('abc\x80\x80\xc1\xc4', 'ignore', u'abc\xec\xa2\x94'))
  18.  
  19.  
  20. class Test_JOHAB(test_multibytecodec_support.TestBase, unittest.TestCase):
  21.     encoding = 'johab'
  22.     tstring = test_multibytecodec_support.load_teststring('johab')
  23.     codectests = (('abc\x80\x80\xc1\xc4', 'strict', None), ('abc\xc8', 'strict', None), ('abc\x80\x80\xc1\xc4', 'replace', u'abc\xef\xbf\xbd\xec\xb4\xa7'), ('abc\x80\x80\xc1\xc4\xc8', 'replace', u'abc\xef\xbf\xbd\xec\xb4\xa7\xef\xbf\xbd'), ('abc\x80\x80\xc1\xc4', 'ignore', u'abc\xec\xb4\xa7'))
  24.  
  25.  
  26. def test_main():
  27.     suite = unittest.TestSuite()
  28.     suite.addTest(unittest.makeSuite(Test_CP949))
  29.     suite.addTest(unittest.makeSuite(Test_EUCKR))
  30.     suite.addTest(unittest.makeSuite(Test_JOHAB))
  31.     test_support.run_suite(suite)
  32.  
  33. if __name__ == '__main__':
  34.     test_main()
  35.  
  36.